From 4704ee85403afb872c495016d4f166fd8067cbe2 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Tue, 30 Jan 2007 13:52:03 +0000 Subject: [PATCH] Added uuid to the PIF_metrics record. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendPIFMetrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendPIFMetrics.py b/tools/python/xen/xend/XendPIFMetrics.py index 68b32f1653..8c65251664 100644 --- a/tools/python/xen/xend/XendPIFMetrics.py +++ b/tools/python/xen/xend/XendPIFMetrics.py @@ -40,7 +40,8 @@ class XendPIFMetrics: return 0.0 def get_record(self): - return {'PIF' : self.pif.uuid, + return {'uuid' : self.uuid, + 'PIF' : self.pif.uuid, 'io_read_kbs' : self.get_io_read_kbs(), 'io_write_kbs' : self.get_io_write_kbs() } -- 2.30.2